A convex optimization problem in standard form is the foundation of modern mathematical programming. It is defined by a convex objective function $f_0$, convex inequality constraints $f_i$, and affine equality constraints. By defining the problem over the intersection of these domains $\mathcal{D} = \bigcap_{i=0}^m \text{dom } f_i$, we ensure that any local optimum is a global optimum.
1. Mathematical Anatomy of the Standard Form
The problem is formally stated as:
The feasible set is defined as $\text{dom } F = \{x \in \text{dom } f_0 \mid f_i(x) \le 0, i = 1, \dots, m, h_i(x) = 0, i = 1, \dots, p \}$. A critical requirement for convexity is that equality constraints must be affine ($Ax = b$), as non-linear equalities generally yield non-convex sets.
2. The Geometric Epigraph Interpretation
The epigraph form problem allows us to interpret optimization geometrically in the 'graph space' $(x, t)$. By introducing a slack variable $t$, we minimize $t$ subject to $(x, t) \in \text{epi } f_0$. This demonstrates that the feasible set, any sublevel set, and the optimal set are inherently convex.
3. The Implicit vs. Explicit Pitfall
A common misconception is that shifting constraints into the objective (making them implicit) simplifies the problem. However, making the constraints implicit has not made the problem any easier to analyze or solve, even though the resulting problem is nominally unconstrained. This is particularly true in the Oracle model (black box), where we evaluate $f(x)$ and its derivatives at a cost without knowing the explicit structure.
4. Real-World Applications
- Portfolio Theory: Minimizing risk $\text{var}(c^T x) = x^T \Sigma x$ for 4 assets (e.g., Asset 1 with 12% return/20% SD).
- Engineering: Structural constraints like $y_i = 6(i - 1/3) \frac{F}{E w_i h_i^3} + v_{i+1} + y_{i+1}$.
- Probability: Loss risk constraints $\Phi^{-1}(\beta) \leq 0$.